16f209f3eef8d081eeea67c64a813358aa0a5693,portal-impl/src/com/liferay/portal/lar/PortletImporter.java,PortletImporter,readAssetCategories,#PortletDataContext#,1242
Before Change
protected void readAssetCategories(PortletDataContext portletDataContext)
throws Exception {
String xml = portletDataContext.getZipEntryAsString(
ExportImportPathUtil.getSourceRootPath(portletDataContext) +
"/categories-hierarchy.xml");
if (xml == null) {
return;
After Change
protected void readAssetCategories(PortletDataContext portletDataContext)
throws Exception {
String sourceRootPath = ExportImportPathUtil.getSourceRootPath(
portletDataContext);
String xml = portletDataContext.getZipEntryAsString(
sourceRootPath.concat("/categories-hierarchy.xml"));
if (xml == null) {
return;